How to reverse an Array in C

FacebookTwitterLinkedInAn array is a variable that can hold multiple values of the same data type simultaneously. Arrays are built into the core of both C and C++. It is useful when you have to declare many variables. Instead of declaring individual variables such as a0, a1, a2, … a99, you declare one array variable such … Continue reading How to reverse an Array in C